home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / Mark Pilgrim / Startup Screen Picker 1.2 / source / ssp startup app ƒ / ssp code ƒ / program globals.h next >
Encoding:
C/C++ Source or Header  |  1994-10-30  |  1.4 KB  |  49 lines  |  [TEXT/KAHL]

  1. /**********************************************************************\
  2.  
  3. File:        program globals.h
  4.  
  5. Purpose:    This is the header file for all the program-specific
  6.             global variables, #defines, enums, and structs.
  7.  
  8. This program is free software; you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation; either version 2 of the License, or
  11. (at your option) any later version.
  12.  
  13. This program is distributed in the hope that it will be useful,
  14. but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. GNU General Public License for more details.
  17.  
  18. You should have received a copy of the GNU General Public License
  19. along with this program in a file named "GNU General Public License".
  20. If not, write to the Free Software Foundation, 675 Mass Ave,
  21. Cambridge, MA 02139, USA.
  22.  
  23. \**********************************************************************/
  24.  
  25. #ifndef _PROGRAM_GLOBALS_H_
  26. #define _PROGRAM_GLOBALS_H_
  27.  
  28. #define CREATOR            'SpPk'
  29.  
  30. enum
  31. {
  32.     allsWell=0,
  33.     cantRenameStartupScreenErr=5,
  34.     cantMoveStartupScreenErr,
  35.     cantMoveNewFileErr,
  36.     cantRenameNewFileErr,
  37.     noFilesErr,
  38.     cantFindSystemFolderErr,
  39.     cantGetDirInfoErr,
  40.     cantGetNewFileInfoErr,
  41.     kSystemTooOld,
  42.     kProgramIntegrityNotVerified,
  43.     kProgramIntegritySet
  44. };
  45.  
  46. extern    unsigned char        gLastName[32];
  47.  
  48. #endif
  49.